07c318eab687dfd018fb4edd1435c8ac81b6ba92,src/main/java/com/mycompany/myapp/config/SecurityConfiguration.java,SecurityConfiguration,configure,#HttpSecurity#,78
Before Change
.logout()
.logoutUrl("/api/logout")
.logoutSuccessHandler(ajaxLogoutSuccessHandler)
.deleteCookies("JSESSIONID")
.permitAll()
.and()
.headers()
.frameOptions()
.disable()
.authorizeRequests()
After Change
.logout()
.logoutUrl("/api/logout")
.logoutSuccessHandler(ajaxLogoutSuccessHandler)
.deleteCookies("JSESSIONID")
.permitAll()
.and()
.headers()
.frameOptions()
.disable()
.and()